home *** CD-ROM | disk | FTP | other *** search
/ Giga Games 1 / Giga Games.iso / net / usenet / volume12 / mdg / patch1 < prev    next >
Encoding:
Internet Message Format  |  1991-03-04  |  3.2 KB

  1. Path: uunet!zephyr.ens.tek.com!master!saab!billr
  2. From: billr@saab.tek.com (Bill Randle)
  3. Newsgroups: comp.sources.games
  4. Subject: v12i043:  mdg -  multiuser dungeon game, Patch1
  5. Message-ID: <854@masterCNA.TEK.COM>
  6. Date: 28 Feb 91 21:16:06 GMT
  7. Sender: news@masterCNA.TEK.COM
  8. Lines: 95
  9. Approved: billr@saab.CNA.TEK.COM
  10.  
  11. Submitted-by: Bill Randle <billr@saab.CNA.TEK.COM>
  12. Posting-number: Volume 12, Issue 43
  13. Archive-name: mdg/Patch1
  14. Patch-To: mdg: Volume 12, Issue 37-42
  15. Environment: System V, SunOS 4.1, curses
  16.  
  17.     [Here is the missing 'default' player file (thanks to Sean
  18.      Gallaty (choke@wet.UUCP)).  To help with the installation
  19.      procedure, I've also enclosed a diff to the Makefile that
  20.      adds a "install" rule. With these changes I was able to
  21.      get it to run with our Sparc 2 SunOS 4.1.1, although we
  22.      did have to rebuild the kernel, as the generic_small does
  23.      not include the shared memory support.  -br]
  24.  
  25.  
  26. #! /bin/sh
  27. # This is a shell archive.  Remove anything before this line, then unpack
  28. # it by saving it into a file and typing "sh file".  To overwrite existing
  29. # files, type "sh file -c".  You can also feed this as standard input via
  30. # unshar, or by typing "sh <file", e.g..  If this archive is complete, you
  31. # will see the following message at the end:
  32. #        "End of shell archive."
  33. # Contents:  patches01 mdg_dir/default
  34. # Wrapped by billr@saab on Thu Feb 28 13:10:36 1991
  35. PATH=/bin:/usr/bin:/usr/ucb ; export PATH
  36. if test -f 'patches01' -a "${1}" != "-c" ; then 
  37.   echo shar: Will not clobber existing file \"'patches01'\"
  38. else
  39. echo shar: Extracting \"'patches01'\" \(971 characters\)
  40. sed "s/^X//" >'patches01' <<'END_OF_FILE'
  41. X*** Makefile.dist    Mon Jan 14 11:15:38 1991
  42. X--- Makefile    Thu Feb 28 13:08:51 1991
  43. X***************
  44. X*** 8,13 ****
  45. X--- 8,17 ----
  46. X  
  47. X  CFLAGS = -g
  48. X  
  49. X+ BINDIR = /usr/local/games
  50. X+ # this must match "GAME_HOME" in files.h
  51. X+ LIBDIR = /usr/local/games/lib/mdg
  52. X+ 
  53. X  DOBJSA = dmain.o seg.o monsters.o msghandler.o findplayer.o godpower.o
  54. X  DOBJSB = players.o random.o combat.o effect.o ranged.o speak.o dmsg.o
  55. X  DOBJSC = spells.o improve.o dident.o magic.o traps.o loadconfig.o
  56. X***************
  57. X*** 47,51 ****
  58. X--- 51,66 ----
  59. X      
  60. X  ident : $(IOBJS)
  61. X      cc $(CFLAGS) -o ident $(IOBJS)
  62. X+ 
  63. X+ install: $(PROGS)
  64. X+     strip $(PROGS)
  65. X+     cp mdg_char mdg_daemon mdg_stop mdg $(BINDIR)
  66. X+     ln $(BINDIR)/mdg_stop $(BINDIR)/mdg_save
  67. X+     -mkdir $(LIBDIR)
  68. X+     -mkdir $(LIBDIR)/bin
  69. X+     -mkdir $(LIBDIR)/players
  70. X+     cp ident mdg_clock $(LIBDIR)/bin
  71. X+     cp mdg_dir/default $(LIBDIR)/players
  72. X+     cp mdg_dir/item.start mdg_dir/map.start mdg_dir/monster.start mdg_dir/note.start $(LIBDIR)
  73. X  
  74. X  # end of Makefile.
  75. END_OF_FILE
  76. if test 971 -ne `wc -c <'patches01'`; then
  77.     echo shar: \"'patches01'\" unpacked with wrong size!
  78. fi
  79. # end of 'patches01'
  80. fi
  81. if test -f 'mdg_dir/default' -a "${1}" != "-c" ; then 
  82.   echo shar: Will not clobber existing file \"'mdg_dir/default'\"
  83. else
  84. echo shar: Extracting \"'mdg_dir/default'\" \(98 characters\)
  85. sed "s/^X//" >'mdg_dir/default' <<'END_OF_FILE'
  86. XNewbie
  87. X500
  88. X0 0 0 0 0 0 0 0 0 0 0 0 0 
  89. X0 0 0 0 0 0 0 0 0 0 0 0 0 
  90. X30:30
  91. X10:10
  92. X0
  93. X[0/0]
  94. X1
  95. X0
  96. X0
  97. Xal = 1
  98. END_OF_FILE
  99. if test 98 -ne `wc -c <'mdg_dir/default'`; then
  100.     echo shar: \"'mdg_dir/default'\" unpacked with wrong size!
  101. fi
  102. # end of 'mdg_dir/default'
  103. fi
  104. echo shar: End of shell archive.
  105. exit 0
  106.